home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / vsprintf.c < prev   
C/C++ Source or Header  |  1989-05-18  |  2KB  |  90 lines

  1. /* 
  2.  * vsprintf.c --
  3.  *
  4.  *    Source code for the "vsprintf" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/vsprintf.c,v 1.2 89/05/18 17:15:51 rab Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include <varargs.h>
  22.  
  23. /*
  24.  * Forward references to procedure defined in this file:
  25.  */
  26.  
  27. static void    WriteProc();
  28.  
  29.  
  30. /*
  31.  *----------------------------------------------------------------------
  32.  *
  33.  * vsprintf --
  34.  *
  35.  *    Format and print one or more values, placing the output into
  36.  *    a string.  See the manual page for details of how the format
  37.  *    string is interpreted.  This procedure is identical to sprintf
  38.  *    except that the arguments have been prepackaged using varargs.
  39.  *
  40.  * Results:
  41.  *    The return value is a pointer to string, which has been
  42.  *    overwritten with formatted information.
  43.  *
  44.  * Side effects:
  45.  *    None.
  46.  *
  47.  *----------------------------------------------------------------------
  48.  */
  49.  
  50. char *
  51. vsprintf(string, format, args)
  52.     char *string;        /* Where to place result. */
  53.     char *format;        /* How to format result.  See man page
  54.                  * for details. */
  55.     va_list args;        /* Variable-length list of arguments,
  56.                  * assembled using the varargs macros. */
  57. {
  58.     FILE stream;
  59.  
  60.     Stdio_Setup(&stream, 0, 1, (unsigned char *) string, 5000, (void (*)()) 0,
  61.         WriteProc, (int (*)()) 0, (ClientData) 0);
  62.     (void) vfprintf(&stream, format, args);
  63.     putc(0, &stream);
  64.     return string;
  65. }
  66.  
  67. /*
  68.  *----------------------------------------------------------------------
  69.  *
  70.  * WriteProc --
  71.  *
  72.  *    This procedure is invoked when the "buffer" for the string
  73.  *    fills up.  Just give the string more space.
  74.  *
  75.  * Results:
  76.  *    None.
  77.  *
  78.  * Side effects:
  79.  *    The stream's "buffer" gets enlarged.
  80.  *
  81.  *----------------------------------------------------------------------
  82.  */
  83.  
  84. static void
  85. WriteProc(stream)
  86.     register FILE *stream;
  87. {
  88.     stream->writeCount = 5000;
  89. }
  90.